home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 19 / Mac Magazin and MacEasy Magazine CD - Issue 19.iso / Online / HttpServerƒ / •OT_Classes / TList.cp < prev    next >
Text File  |  1996-01-03  |  1KB  |  32 lines

  1. //    TList.cp - Macintosh Queues and Lists class object
  2. // 
  3. // Apple Macintosh Developer Technical Support
  4. // Written by:  Vinne Moscaritolo
  5. //
  6. //  Copyright (work in progress)  Apple Computer, Inc All rights reserved.
  7. //
  8. // You may incorporate this sample code into your applications without
  9. // restriction, though the sample code has been provided "AS IS" and the
  10. // responsibility for its operation is 100% yours.  However, what you are
  11. // not permitted to do is to redistribute the source as "DSC Sample Code"
  12. // after having made changes. If you're going to re-distribute the source,
  13. // we require that you make it clear in the source that the code was
  14. // descended from Apple Sample Code, but that you've made changes.
  15. // 
  16.  
  17. #include "TList.h"
  18.  
  19. // ---------------------------------------------------------------------------
  20. //     TList::Count( )
  21. // ---------------------------------------------------------------------------
  22. // count items on list
  23.  
  24. size_t    TList::Count()
  25. {
  26.     size_t index;
  27.     TLink* p;
  28.     
  29.     for(p = GetFirst(),  index = 0;  p;  p = p->Next(), index++);
  30.     return index;
  31. }
  32.